home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 11-04.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  349b  |  27 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 3
  7. FGcursor 0
  8.  
  9. FGsetcolor 7
  10. FGrect 0, 79, 0, 24
  11. FGsetattr 10, 7, 0
  12. FGtext "line one", 8
  13. FGlocate 1, 0
  14. FGtext "line two", 8
  15. FGwaitkey
  16.  
  17. FGsetcolor 7
  18. FGscroll 0, 7, 1, 1, 1, 1
  19. FGwaitkey
  20. FGscroll 0, 7, 2, 2, -1, 1
  21. FGwaitkey
  22.  
  23. FGsetmode OldMode
  24. FGreset
  25.  
  26. END
  27.